home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
More Anime Pin-Up Beauties
/
More Anime Pin-Up Beauties.iso
/
pc
/
east
/
gpx05.dir
/
00201_Script_201
< prev
next >
Wrap
Text File
|
1998-06-22
|
3KB
|
146 lines
-- For CLICK
-- ++++++++++++++++++++++++++++++++ initialize of CLICK BOX
on initCLK
global gPathItem
global gCLKerr
global gCLKnum
cursor 4
put 0 into gCLKerr
put 1 into gCLKnum
chgScene("PL-000", the frame + 1, gPathItem & "BGB00")
-- Wait Slider
puppetSprite 22,TRUE
set the locV of sprite 22 to 216
upDateStage
aiffSound(6)
startTimer
cursor -1
-- ++++++++++++++++++++++++++++++++ termination of CLICK BOX(MENU)
on termCLK
cursor 4
repeat with n = 2 to 24
puppetSprite n, FALSE
end repeat
go to frame "000"
-- ++++++++++++++++++++++++++++++++ termination of CLICK BOX(time up or too much error)
on badCLK
cursor 4
repeat with n = 2 to 24
puppetSprite n, FALSE
end repeat
go to frame "CLKNG"
-- ++++++++++++++++++++++++++++++++ termination of CLICK BOX(complete)
on completeCLK
cursor 4
repeat with n = 2 to 24
puppetSprite n, FALSE
end repeat
go to frame "CLKOK"
-- ++++++++++++++++++++++++++++++++ set position of TIMER gage
on placeTimGage
put (the timer / 15) into vPos
if vPos > 240 then
badCLK()
exit
end if
puppetSprite 22,TRUE
set the locV of sprite 22 to (216 + vPos)
-- ++++++++++++++++++++++++++++++++ exactly
on exactlyCLK
global gCLKnum
cursor 4
puppetSound "PING"
upDateStage
put the timer + 60 into vT
repeat while (the timer < vT)
--
end repeat
if gCLKnum > 6 then
completeCLK()
exit
end if
put gCLKnum + 1 into gCLKnum
cursor -1
go to (the frame + 1)
-- ++++++++++++++++++++++++++++++++ exactly
on missCLK
global gCLKerr
cursor 4
puppetSound "BUZ"
upDateStage
put the timer + 60 into vT
repeat while (the timer < vT)
--
end repeat
put gCLKerr + 1 into gCLKerr
if gCLKerr > 3 then
badCLK()
exit
end if
cursor -1
-- ++++++++++++++++++++++++++++++++ initialize of complete
on completeCLKinit
global gPathItem
cursor 4
puppetSound "FAN"
upDateStage
startTimer
repeat while the timer < 300
--
end repeat
chgScene("PL-000", the frame + 1, gPathItem & "BGB99")
cursor -1
on completeCLKloop
if the timer < 300 then
go to the frame
end if
-- ++++++++++++++++++++++++++++++++ initialize of bad
on badCLKinit
global gPathItem
global gCLKnum
cursor 4
chgScene("PL-000", the frame + 1, gPathItem & "BGB0" & gCLKnum)
aiffSound(2)
cursor -1